home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Zuper / Poppop.dir / 00021_Script_21 < prev    next >
Text File  |  1999-02-27  |  324b  |  19 lines

  1. on keyDown
  2.   if the key = "q" then
  3.     set i to 1
  4.     repeat while i < 5
  5.       sound stop i
  6.       set i to i + 1
  7.     end repeat
  8.     go to "black"
  9.   end if
  10. end keyDown
  11.  
  12. on mouseDown
  13.     set i to 1
  14.     repeat while i < 5
  15.       sound stop i
  16.       set i to i + 1
  17.     end repeat
  18.     go to "black"
  19. end mouseDown